home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 49
/
Amiga Format CD49 (2000-01-17)(Future Publishing)(GB)(Track 1 of 3)[!][issue 2000-02].iso
/
-websites-
/
sasg
/
mui
/
mui38usr.lha
/
MUI
/
Rexx
/
MUI-Demo.mrx
next >
Wrap
Text File
|
1996-07-13
|
538b
|
37 lines
/*
** This script shows how to obtain
** general information on an application.
*/
options results
address 'MUIDEMO.1'
'info title'
title = result
'info author'
author = result
'info copyright'
copyright = result
'info description'
description = result
'info version'
version = result
'info base'
base = result
'info screen'
screen = result
say "Title......: "title
say "Author.....: "author
say "Copyright..: "copyright
say "Description: "description
say "Version....: "version
say "Basename...: "base
say "Screen.....: "screen